home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / olsq_11.zip / ERROR.QB < prev    next >
Text File  |  1996-01-31  |  4KB  |  103 lines

  1.  
  2.                             QuickBasic Error codes
  3.                       DoorFrame uses the QB error codes.
  4.  
  5.  ---------------------------------------------------------------------------
  6.      The following file was compiled and written by Dennis Maidon,
  7. PAROLE Software and may not be used or distributed without expressed
  8. written permission from Dennis Maidon.
  9.  
  10.       Copyright 1991-96, PAROLE Software --- All rights reserved.
  11.  ---------------------------------------------------------------------------
  12.  
  13.  2   Syntax Error                       61   Disk full
  14.  5   Illegal Function Call              62   Input past end of File
  15.  6   Overflow                           63   Bad record number
  16.  7   Out of memory                      64   Bad filename
  17. 11   Division by Zero                   67   Too many files
  18. 13   type mismatch                      68   Device unavailable
  19. 24   Device Timeout                     69   Comm-buffer overflow
  20. 25   Device fault                       70   Permission denied
  21. 52   Bad filename or number             71   Disk not ready
  22. 53   File Not Found                     72   Disk media error
  23. 55   File Already open                  74   Rename across disk
  24. 57   Device I/O error                   75   Path/File access error
  25. 58   File already exists                76   Path not found
  26. 59   Bad Record length
  27.  
  28.      The most common error that you will see is #62.  This is usually caused
  29. by the CFG file not having enough lines.  I have included this list so
  30. that you may be able to fix a problem that occurs with a PAROLE Software
  31. door.
  32.  
  33. ON SCREEN GARBAGE:
  34.  
  35.      If you wish to view the screens locally, you must have an ANSI
  36. driver loaded in your CONFIG.SYS.   Read your DOS manual for
  37. instructions on setting up ANSI.SYS.   Do not call me and ask, I will
  38. tell you to read your manual.
  39.  
  40. If you are operating under DESQview, you will need to load DVANSI in
  41. *EACH* window.
  42.  
  43. 486DX CPU's
  44. -----------
  45. The math coprocessor in 486DX CPUs cannot handle floating point math which
  46. all MicroSoft Basic's use. This can show up as an ERROR 5, a keyboard
  47. timeout, etc.
  48.  
  49. Fortunately there is an easy fix for this problem. Simply place the following
  50. line in the AUTOEXEC.BAT file:
  51.  
  52. SET NO87=ON
  53.  
  54. This will inform DoorFrame to use a different timing routine.  If you are
  55. operating under DESQview/X, you must flag the MATH COPROCESSOR as being ON.
  56.  
  57. If the door seems to operate fine on  the BBS end but the remote cannot
  58. receive or receives garbled info, check and make sure you are passing the
  59. correct IRQ to the door.  Com 1 and 2 are standard and as such, you do
  60. not need to pass the IRQ to them.
  61.  
  62. Error #75 is usually an incorrect path and/or filename in the CFG file.
  63. Please check the filenames and paths in your CFG file(s).  They *MUST* be
  64. correct in order for the door to operate.
  65.  
  66. Unless you are using a Digi-board and need a fossil driver, DO NOT use
  67. the "/FD" switch on the command line.  The doors do not need a fossil
  68. driver to operate on serial ports.
  69.  
  70. If you are operating under Wildcat! 4.x, you will need to specify
  71. DOOR.SYS on line #1 of the CFG file.  WC!4 no longer creates or supports
  72. USERINFO.DAT.
  73.  
  74. WC!4.x  Create a file named "WILDCAT.4" and place it in the door
  75. directory.  This will enable the door to write to the correct activity
  76. log file.  This is NOT requires for the door to operate.  If you don't
  77. mind the old-style activity log, ignore this.
  78.  
  79. If you are running WC! 4.x, you should specify SMALL DOOR.SYS in the
  80. Makewild setup for ALL PAROLE Software doors.
  81.  
  82. If you have entered your serial number and the door still shows
  83. "UNREGISTERED", check your BBS spelling.  It *MUST* be spelled exactly
  84. as it was registered.   Case does not matter.
  85.  
  86. How to create a "0" byte file:
  87.  
  88.      1.) From the dos prompt type "COPY CON <filename>"
  89.      2.) Press Enter
  90.      3.) Press <F6>
  91.      4.) Press Enter.
  92.  
  93.      This, for some reason, does not work on all systems.
  94.  
  95.  
  96. NOTE:  If you have not run the INSTALL.BAT on a new installation, please
  97.        do not call me for support.  I include this batch file for a
  98.        reason, to install the door properly.
  99.  
  100.  
  101. Revised: 1/28/96
  102.  
  103.